home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / Software / 00004_SupportTitle1.ls < prev    next >
Encoding:
Text File  |  2000-10-18  |  359 b   |  16 lines

  1. on mouseWithin
  2.   member("SupportTitle").foreColor = 70
  3.   put "Click to go to the software title's support page - for updates, extras, help and more" into member "Infofield"
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave
  8.   member("SupportTitle").foreColor = 255
  9.   put EMPTY into member "Infofield"
  10.   cursor(0)
  11. end
  12.  
  13. on mouseDown
  14.   gotoNetPage("http://www.microsoft.com")
  15. end
  16.